home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
The PC-SIG Library 10
/
The PC-Sig Library - Shareware for the IBM PC and Compatibles (PC-SIG)(Tenth Edition Disks 1-2804)(1991).iso
/
PC_SIGCD
/
22
/
4
/
DISK2247.ZIP
/
CBASE101.ZIP
/
LSEQ101.ZIP
/
LSSETBUF.C
< prev
next >
Wrap
Text File
|
1990-06-20
|
2KB
|
89 lines
/* Copyright (c) 1989 Citadel */
/* All Rights Reserved */
/* #ident "@(#)lssetbuf.c 1.4 - 90/06/20" */
/* ansi headers */
#include <errno.h>
/* library headers */
#include <blkio.h>
/* local headers */
#include "lseq_.h"
/*man---------------------------------------------------------------------------
NAME
lssetbuf - assign buffering to an lseq
SYNOPSIS
#include <lseq.h>
int lssetbuf(lsp, buf)
lseq_t *lsp;
void *buf;
DESCRIPTION
The lssetbuf function causes the storage area pointed to by buf
to be used by the lseq associated with lseq pointer lsp instead
of an automatically allocated buffer area. If buf is the NULL
pointer, lsp will be completely unbuffered.
The size of the storage area needed can be obtained using the
LSBUFSIZE() macro:
char buf[LSBUFSIZE(RECSIZE, LSBUFCNT)];
lssetbuf(lsp, (void *)buf);
where RECSIZE is the size of the records in the lseq and LSBUFCNT
is the default number of records buffered when an lseq is opened.
LSBUFCNT is defined in <lseq.h>. If the number of records
buffered has been changed using lssetvbuf, then that number
should be used in place of LSBUFCNT.
lssetbuf may be called at any time after opening the lseq,
before and after it is read or written; the buffers are flushed
before installing the new buffer area.
lssetbuf will fail if one or more of the following is true:
[EINVAL] lsp is not a valid lseq pointer.
[LSENBUF] buf is not the NULL pointer and lsp
is not buffered.
[LSENOPEN] lsp is not open.
SEE ALSO
lssetvbuf, lssync.
DIAGNOSTICS
Upon successful completion, a value of 0 is returned. Otherwise,
a value of -1 is returned, and errno set to indicate the error.
------------------------------------------------------------------------------*/
int lssetbuf(lsp, buf)
lseq_t *lsp;
void *buf;
{
/* validate arguments */
if (!ls_valid(lsp)) {
errno = EINVAL;
return -1;
}
/* check if not open */
if (!(lsp->flags & LSOPEN)) {
errno = LSENOPEN;
return -1;
}
/* assign buffering */
if (bsetbuf(lsp->bp, buf) == -1) {
if (errno == BENBUF) errno = LSENBUF;
LSEPRINT;
return -1;
}
errno = 0;
return 0;
}